home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part2 / 15337 < prev    next >
Encoding:
Text File  |  1996-08-05  |  703 b   |  26 lines

  1. Path: keats.ugrad.cs.ubc.ca!not-for-mail
  2. From: c2a192@ugrad.cs.ubc.ca (Kazimir Kylheku)
  3. Newsgroups: comp.lang.c
  4. Subject: Re: Defeat password by C
  5. Date: 17 Apr 1996 23:23:35 -0700
  6. Organization: Computer Science, University of B.C., Vancouver, B.C., Canada
  7. Message-ID: <4l4n57INNb5g@keats.ugrad.cs.ubc.ca>
  8. References: <4l4cns$gs0@usenetp1.news.prodigy.com>
  9. NNTP-Posting-Host: keats.ugrad.cs.ubc.ca
  10.  
  11. In article <4l4cns$gs0@usenetp1.news.prodigy.com>,
  12. Bubba Meigs <VRLL67A@prodigy.com> wrote:
  13. >I am a student who trying to learn how to program C++.
  14. >I just wonder if anyone know how to write a program by C++ to break the 
  15. >password.
  16.  
  17. main()
  18. {
  19.     char pass[] = "mylamepassword";
  20.  
  21.     pass[8] = 0;
  22.  
  23.     return 0;
  24. }
  25.  
  26.